How To Add a Drop Down Arrow In Html Using Bootstrap

admin_img Posted By Bajarangi soft , Posted On 07-10-2020

A dropdown menu is a toggleable menu that allows the user to choose one value from a predefined list Highlight a specific dropdown item with the .active class (adds a blue background color).

Bootstrap Drop down Arrow

1.Add a Arrow To The Dropdown List using Html and Bootstrap

<!DOCTYPE html>
<html>
<head>
    <title>Bootstrap Example</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>

<div class="container">
    <h2>Dropdowns</h2>
    <p>The .dropdown-divider class is used to separate links inside the dropdown menu with a thin horizontal line:</p>
    <div class="dropdown">
        <button type="button" class=" fa fa-angle-double-down" data-toggle="dropdown" style="font-size:30px;color:red">
            Dropdown button
        </button>
        <div class="dropdown-menu">
            <a class="dropdown-item " href="#">Link 1</a>
            <a class="dropdown-item" href="#">Link 2</a>
            <a class="dropdown-item" href="#">Link 3</a>
            <div class="dropdown-divider">
            </div>
            <a class="dropdown-item" href="#">Another link</a>
        </div>
    </div>
</div>

</body>
</html>
2.Design  Dropdown List  Buttons using Html and Bootstrap Example-1
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Bootstrap Example</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
    <h2>Nesting Button Groups</h2>
    <p>Nest button groups to create dropdown menus:</p>
    <div class="btn-group">
        <button type="button" class="btn btn-danger active">Apple</button>
        <button type="button" class="btn btn-warning">Samsung</button>
        <div class="btn-group">
            <button type="button" class="btn btn-success dropdown-toggle" data-toggle="dropdown">
                Sony
            </button>
            <div class="dropdown-menu">
                <a class="dropdown-item" href="#">Tablet</a>
                <a class="dropdown-item" href="#">Smartphone</a>
            </div>
        </div>
    </div>
</div>

</body>
</html>

Related Post